home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / languages / pcq_incl3v1.lha / Gadgets / TapeDeck.i < prev   
Encoding:
Text File  |  1994-09-18  |  1.2 KB  |  39 lines

  1.    {   Definitions for the tapedeck BOOPSI class   }
  2.  
  3. {***************************************************************************}
  4.  
  5. {$I "Include:Utility/TagItem.i"}
  6.  
  7. {***************************************************************************}
  8. const
  9.     TDECK_Dummy            = (TAG_USER+$05000000);
  10.     TDECK_Mode             = (TDECK_Dummy + 1);
  11.     TDECK_Paused           = (TDECK_Dummy + 2);
  12.  
  13.     TDECK_Tape             = (TDECK_Dummy + 3);
  14.         { (BOOL) Indicate whether tapedeck or animation controls.  Defaults
  15.          * to FALSE. }
  16.  
  17.     TDECK_Frames           = (TDECK_Dummy + 11);
  18.         { (LONG) Number of frames in animation.  Only valid when using
  19.          * animation controls. }
  20.  
  21.     TDECK_CurrentFrame     = (TDECK_Dummy + 12);
  22.         { (LONG) Current frame.  Only valid when using animation controls. }
  23.  
  24. {***************************************************************************}
  25.  
  26. { Possible values for TDECK_Mode }
  27.     BUT_REWIND     = 0;
  28.     BUT_PLAY       = 1;
  29.     BUT_FORWARD    = 2;
  30.     BUT_STOP       = 3;
  31.     BUT_PAUSE      = 4;
  32.     BUT_BEGIN      = 5;
  33.     BUT_FRAME      = 6;
  34.     BUT_END        = 7;
  35.  
  36. {***************************************************************************}
  37.  
  38.  
  39.